POST
/
api
/
v3
/
sites
/
{site_uuid}
/
teams
/
{team_uuid}
/
request-sensitive-data
Request sensitive data access for a team
curl --request POST \
  --url https://cloud.volttime.com/api/v3/sites/{site_uuid}/teams/{team_uuid}/request-sensitive-data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "reason": "b",
  "requested_data_expires_at": "2051-10-19"
}'
{
  "message": "Sensitive data access request sent successfully"
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

site_uuid
string
required
team_uuid
string
required

Body

application/json
reason
string
required

Must not be greater than 255 characters.

Example:

"b"

requested_data_expires_at
string
required

Must be a valid date. Must be a date after <code>today</code>.

Example:

"2051-10-19"

Response

200 - application/json
message
string
Example:

"Sensitive data access request sent successfully"